VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Metadata Namespace / MetadataNode Class / FindChildNode Methods / FindChildNode<T>(String) Method
Syntax Requirements SeeAlso
In This Topic
    FindChildNode<T>(String) Method (MetadataNode)
    In This Topic
    Finds the first child node of specified type with specified name.
    Syntax
    'Declaration
    
    Public Overloads Function FindChildNode<T
    Type of node to search.
    >( _
    ByVal name
    The name of node to search.
    As System.String _
    ) As T (Of T
    Type of node to search.
    As MetadataNode)
    public T FindChildNode<T>(
    System.String name
    ) where T: MetadataNode
    public: T* FindChildNode<T>(
    System.String name
    ) where T: MetadataNode*
    generic<typename T>
    public:
    T^ FindChildNode(
    System.String name
    ) where T: MetadataNode^

    Parameters

    name
    The name of node to search.

    Type Parameters

    T
    Type of node to search.

    Return Value

    First child node of specified type.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also